home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 - Homepage / CHIP.BIN / share / htmledit / bashhtml / bashhtml.exe / %AppDir% / scripts / Simple Message Box.txt < prev   
Encoding:
Text File  |  2003-09-01  |  616 b   |  23 lines

  1. [DESCRIPTION]Creates a link which adds your site to the visitor's Favorites when clicked.[/DESCRIPTION]
  2.  
  3. [HEAD CODE]<script language="JavaScript1.2">
  4.  
  5. <!--
  6. var bookmarkurl="http://www.bashsoftware.tk"
  7. var bookmarktitle="Bash Software Homepage"
  8.  
  9. function addbookmark(){
  10. if (document.all)
  11. window.external.AddFavorite(bookmarkurl,bookmarktitle)
  12. }
  13.  
  14. -->
  15. </script>[/HEAD CODE]
  16.  
  17. [BODY CODE][/BODY CODE]
  18.  
  19. [NOTES]To create the link for your visitors to click, add the code below to one of your links:
  20.  
  21. javascript:addbookmark()
  22.  
  23. Example: <a href="javascript:addbookmark()">Bookmark this site!</a>[/NOTES]